.faq-container {
    margin: 40px auto;
    max-width: 700px;
    background: #0f1724;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #26314f;
}

.faq-question {
    background: #1a223d;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #2a3355;
}

.faq-answer {
    background: #111a33;
    margin-top: 8px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    line-height: 1.6;
    color: #e6f0ff;
}
